home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Franz PD / Franz PD Disk #279 (1993)(Rhein-Sieg-Soft).zip / Franz PD Disk #279 (1993)(Rhein-Sieg-Soft).adf / AKCC_V3.02.LHA / AKCC / AKCC_Install / Install_AKCC.script < prev    next >
Text File  |  1993-11-01  |  2KB  |  115 lines

  1. ; Install_AKCC.script V3.0.0
  2. ; © 1993 by Andreas R. Kleinert.
  3. ; This is the Installer Script for AKCC
  4.  
  5. (copylib
  6.   (prompt "Installing akcc_gen0.library to LIBS: ...")
  7.   (help @copylib-help)
  8.   (source ":AKCC/akcc_gen0-Library/akcc_gen0.library")
  9.   (dest "LIBS:")
  10.   (confirm)
  11. )
  12.  
  13. (copyfiles
  14.   (prompt "Installing AKCC commands now.")
  15.   (help @copyfiles-help)
  16.   (source ":AKCC/AKCC_Commands")
  17.   (set akcomdir
  18.           (askdir
  19.              (prompt "Select path to install AKCC commands")
  20.              (help @askdir-help)
  21.              (newpath)
  22.              (default "SYS:AKCC")
  23.           )
  24.   )
  25.   (dest akcomdir)
  26.   (pattern "#?")
  27.   (files)
  28.   (confirm)
  29. )
  30.  
  31. (copyfiles
  32.   (prompt "Installing AKCC Shell now.")
  33.   (help @copyfiles-help)
  34.   (source ":AKCC/AKCC_Shell")
  35.   (set akshelldir
  36.           (askdir
  37.              (prompt "Select path to install AKCC Shell")
  38.              (help @askdir-help)
  39.              (newpath)
  40.              (default akcomdir)
  41.           )
  42.   )
  43.   (dest akshelldir)
  44.   (pattern "~(#?.doc)")
  45.   (files)
  46.   (infos)
  47.   (confirm)
  48. )
  49.  
  50. (copyfiles
  51.   (prompt "Installing AKCC Shell Documentation Files now.")
  52.   (help @copyfiles-help)
  53.   (source ":AKCC/AKCC_Shell")
  54.   (set akshelldocdir
  55.           (askdir
  56.              (prompt "Select path to install AKCC Shell Doc Files")
  57.              (help @askdir-help)
  58.              (newpath)
  59.              (default (cat akshelldir "/AKCC_Docs"))
  60.           )
  61.   )
  62.   (dest akshelldocdir)
  63.   (pattern "(#?.doc)")
  64.   (infos)
  65.   (files)
  66.   (confirm)
  67. )
  68.  
  69. (copyfiles
  70.   (prompt "Installing Documentation Files now.")
  71.   (help @copyfiles-help)
  72.   (source ":AKCC/AKCC_Docs")
  73.   (set akcomdocdir
  74.           (askdir
  75.              (prompt "Select path to install AKCC Doc Files")
  76.              (help @askdir-help)
  77.              (newpath)
  78.              (default akshelldocdir)
  79.           )
  80.   )
  81.   (dest akcomdocdir)
  82.   (pattern "(#?.doc)")
  83.   (infos)
  84.   (files)
  85.   (confirm)
  86. )
  87.  
  88. (copyfiles
  89.   (prompt "Installing AmigaGuide Documentation Files now.")
  90.   (help @copyfiles-help)
  91.   (source ":AKCC/AKCC_Guide")
  92.   (set akguidedir
  93.           (askdir
  94.              (prompt "Select path to install AKCC AmigaGuide Files")
  95.              (help @askdir-help)
  96.              (newpath)
  97.              (default (cat akcomdir "/AKCC_Guide"))
  98.           )
  99.   )
  100.   (dest akguidedir)
  101.   (pattern "(#?.guide|#?.info)")
  102.   (files)
  103.   (infos)
  104.   (confirm)
  105. )
  106.  
  107.  
  108. (startup "AKCC"
  109.   (prompt "Now modifying your S:User-Startup to use AKCC ...")
  110.   (help @startup-help)
  111.   (command "Path "akcomdir" add\n")
  112.   (command "Assign AKCC: "akcomdir)
  113. )
  114.  
  115.